Windows 10 Kilit Ekranı Duvar Kağıtlarına Erişim

Windows 10’un kilit ekranı duvar kağıtlarını saklamak için şu betiği kullanabilirsiniz.

Bu kodu copy_and_rename_login_wallpapers.bat adıyla kaydedin ve çalıştırın.

Duvar kağıtlarını \Pictures\Wallpapers\LoginScreen dizininde bulabileceksiniz.

@echo off
REM Define the source and destination directories
set src=%localappdata%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
set dest=%userprofile%\Pictures\Wallpapers\LoginScreen

REM Create the destination directory if it doesn't exist
if not exist "%dest%" (
    mkdir "%dest%"
)

REM Copy files from source to destination
xcopy "%src%\*" "%dest%\" /s /y

REM Loop through all files in the destination directory
cd /d "%dest%"
for %%f in (*) do (
    REM Check if the file has no extension
    if "%%~xf"=="" (
        REM Rename the file to add the .png extension
        ren "%%f" "%%f.png"
    )
)

echo Done!
pause

Bir cevap yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir